home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / fuse-utils.postrm < prev    next >
Encoding:
Text File  |  2009-03-05  |  228 b   |  21 lines

  1. #!/bin/bash -e
  2.  
  3. test $DEBIAN_SCRIPT_DEBUG && set -v -x
  4.  
  5. case $1 in
  6.   purge|remove)
  7.   ;;
  8.  
  9.   failed-upgrade|upgrade|abort-upgrade)
  10.   ;;
  11.  
  12.   *)
  13.     echo "postrm called with unknown argument \`$1'" >&2
  14.     exit 1
  15.   ;;
  16. esac
  17.  
  18.  
  19.  
  20. exit 0
  21.